home *** CD-ROM | disk | FTP | other *** search
/ PsL Monthly 1993 December / PSL Monthly Shareware CD-ROM (December 1993).iso / prgmming / dos / tools / filbuf.exe / CTEST.C < prev    next >
Encoding:
C/C++ Source or Header  |  1992-06-12  |  416 b   |  14 lines

  1. /* Demonstrates use of both functions from any dialect of C that accepts
  2.  * the "pascal" and "far" keywords.  Both Microsoft and Borland products
  3.  * recognize these.
  4.  */
  5. #include <stdio.h>
  6. extern int pascal far Buffers( void );
  7. extern int pascal far NFiles( void );
  8.  
  9. void main( void )
  10. { printf( "\nThis system is configured for %i files and %i buffers.\n",
  11.           NFiles(),
  12.           Buffers() );
  13. }
  14.